home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / pbaseiv.zip / P4UTL008.TIP < prev    next >
Text File  |  1991-12-16  |  2KB  |  44 lines

  1. Every time I use CHKDSK.COM, I want it to tell me just two
  2. things: how much space is left on my disk and how much
  3. memory is free. On a fast machine this information comes
  4. quickly, but on an early PC or one with a slow hard disk,
  5. the wait can be intolerable. This problem led me to develop
  6. Freespace (FS.COM). It's many times faster than CHKDSK,
  7. produces a clearer display (in color on most machines), and
  8. needs less than 4K of RAM, as opposed to CHKDSK's 40K.
  9.  
  10. I've tested Freespace on 8088s, 80286s, and 80386s using DOS
  11. 3.0 to 3.3. To use it, type fs d: where d: is any valid
  12. drive. If you type just fs, the program uses the default
  13. drive.
  14.  
  15. Brian Mowers
  16. Southfield, Michigan
  17.  
  18. Editor's note: Mr. Mowers doesn't mention one of the best
  19. applications for his program: networked drives, where
  20. CHKDSK, which needs exclusive access to the physical drive,
  21. doesn't work at all. I altered his original code to let the
  22. program work on disks larger than 64MB and to fix a few
  23. minor bugs. You can find the program FS.COM in the P4UTIL
  24. directory of your PowerBase *.* Volume IV diskette; all you
  25. need to do is move it to a directory in your PATH.
  26.  
  27. If you compare FS.COM's memory estimate to CHKDSK's, you'll
  28. see that it's more conservative. The reason: CHKDSK adds
  29. back its environment space and FS doesn't. FS's number is
  30. probably closer to the actual amount of memory a program
  31. will have available when it runs.
  32.  
  33. Postscript: This utility was originally named MF.COM, but PC
  34. World's editors changed the name to FS.COM. Unfortunately,
  35. the latter name conflicts with the FS (File Size) program in
  36. Symantec's popular Norton Utilities, so it's a good idea to
  37. rename this utility if you use the Norton package.
  38.  
  39. Title: To Boldly Go Where CHKDSK Can't
  40. Category: MSC
  41. Issue date: Aug 1991
  42. Editor: Brett Glass
  43. Supplementary files: P4UTIL\FS.COM
  44.